home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / games / nhak_src.zip / MSDOS.H < prev    next >
C/C++ Source or Header  |  1993-03-16  |  632b  |  28 lines

  1. /*    SCCS Id: @(#)msdos.h    3.0    88/07/21
  2. /* msdos.h - function declarations for msdos.c */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef MSDOS_H
  6. #define MSDOS_H
  7.  
  8. #ifdef OLD_TOS
  9. #define msmsg    cprintf
  10. #endif
  11. extern const char *alllevels, *allbones;
  12. extern char levels[], bones[], permbones[], SAVEF[], hackdir[];
  13. #ifdef MSDOS
  14. extern char SAVEP[];
  15. #endif
  16. extern int ramdisk;
  17. #if defined(DGK) && !defined(OLD_TOS)
  18. extern int count_only;
  19. #endif
  20.  
  21. #define C(c)  (0x1f & (c))
  22. #define M(c)  (0x80 | (c))
  23. #define ABORT C('a')
  24. #define COUNT 0x1
  25. #define WRITE 0x2
  26.  
  27. #endif /* MSDOS_H /* */
  28.